home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / man / man-part1 / cat7 / remez.7 < prev    next >
Text File  |  1999-09-16  |  844b  |  67 lines

  1.  
  2.  
  3.  
  4. REMEZ(G)                       Scilab Function                       REMEZ(G)
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. NAME
  12.   remez - Remez's algorithm
  13.  
  14. CALLING SEQUENCE
  15.   [an]=remez(nc,fg,ds,wt)
  16.  
  17. PARAMETERS
  18.  
  19.   nc   : integer, number of cosine functions
  20.  
  21.   fg,ds,wt
  22.        : real vectors
  23.  
  24.   fg   : grid of frequency points in [0,.5)
  25.  
  26.   ds   : desired magnitude on grid fg
  27.  
  28.   wt   : weighting function on error on grid fg
  29.  
  30. DESCRIPTION
  31.   minimax approximation of a frequency domain magnitude response.  The
  32.   approximation takes the form
  33.    h = sum[a(n)*cos(wn)]
  34.   for n=0,1,...,nc. An FIR, linear-phase filter can be obtained from the the
  35.   output of remez by using the following commands:
  36.                    hn(1nc-1)=an(nc-12)/2;
  37.                    hn(nc)=an(1);
  38.                    hn(nc+12*nc-1)=an(2nc)/2;
  39.   where an = cosine filter coefficients
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.